Ein Mesh Feature-Objekt (Mesh Formelement) oder formal ein Mesh::Feature
ist ein einfaches Element mit einem ihm zugeordneten Mesh MeshObject (Mesh-Objekt), das in der 3D-Ansicht angezeigt werden kann.
Ein Mesh Formelement ähnelt konzeptionell einem Part Formelement; Ersteres ist das Basisobjekt für Elemente mit "Polygonnetz"-Information, während Letzteres das Basisobjekt für Elemente mit "geometrischer Form"-Information ist.
Bitte beachten, dass der Arbeitsbereich FEM ebenfalls Polygonnetze verwendet, aber in diesem Fall wird ein anderes Objekt verwendet, das FEM FemMeshObject genannt wird (Fem::FemMeshObject
-Klasse). Dieses Objekt ist nicht von dem Mesh Formelement abgeleitet und hat andere Eigenschaften.
Vereinfachtes Diagramm der Beziehungen zwischen den Kernobjekten in FreeCAD.
Fast alle Mesh-Objekte, die mit den im Arbeitsbereich Mesh verfügbaren Befehlen erzeugt werden, sind Mesh Formelemente. Die parametrischen Mesh-Objekte, die mit dem Befehl Mesh RegelgeometrieErstellen erzeugt werden, bilden die einzige Ausnahme. Ein Mesh Formelement kann auch über die Python-Konsole erstellt werden, wie im Abschnitt Skripten beschrieben.
Das Mesh::Feature
wird im Arbeitsbereich Mesh definiert, kann aber als Basisklasse für skriptgenerierte Objekte in allen Arbeitsbereichen, die 2D- and 3D-Netze erstellen, verwendet werden.
Ein Mesh::Feature
besitzt einfache Eigenschaften, wie eine Positionierungund visuelle Eigenschaften, die die Darstellung seiner Kanten und Flächen bestimmen.
Siehe Eigenschaft für alle Arten von Eigenschaften, die skriptgenerierte Objekte besitzen können.
The Mesh Feature (Mesh::Feature
class) is derived from the basic App GeoFeature (App::GeoFeature
class) and inherits all its properties. It also has several additional properties. Notably a DatenMesh property, which stores its Mesh MeshObject. This is the geometry that is shown in the 3D view.
These are the properties available in the property editor. Hidden properties can be shown by using the Show all command in the context menu of the property editor.
Basis
PythonObject
): a custom class associated with this object. This only exists for the Python version. See Scripting.MeshKernel
): a Mesh MeshObject class associated with this object. It lists the number of Points
, Edges
, and Faces
of the mesh.Placement
): the position of the object in the 3D view. The placement is defined by a Base
point (vector), and a Rotation
(axis and angle). See Placement.
0°
(zero degrees).0
and 1
. If any value is above 1
, the vector is normalized so that the magnitude of the vector is 1
. By default, it is the positive Z axis, (0, 0, 1)
.(0, 0, 0)
.String
): the user editable name of this object, it is an arbitrary UTF8 string.String
): a longer, user editable description of this object, it is an arbitrary UTF8 string that may include newlines. By default, it is an empty string ""
.ExpressionEngine
): a list of expressions. By default, it is empty []
.Bool
): whether to display the object or not.Base
PythonObject
): a custom viewprovider class associated with this object. This only exists for the Python version. See Scripting.Display Options
Bool
): if it is true
, the object will show the bounding box in the 3D view.Enumeration
): Shaded
(no edges), Wireframe
(no faces), Flat Lines
(regular visualization), Points
(only vertices).Bool
): if it is true
, the object appears in the Tree view. Otherwise, it is set as invisible.Bool
): if it is true
, the object appears in the 3D view; otherwise it is invisible. By default this property can be toggled on and off by pressing the Space bar.Object Style
Bool
): it defaults to false
.FloatConstraint
):Enumeration
): One side
(default), Two side
; the illumination comes from two sides or one side in the 3D view.Color
): a tuple of three floating point RGB values (r,g,b)
to define the color of the edges in the 3D view; by default it is (0.0, 0.0, 0.0)
, which is displayed as [0,0,0]
on base 255, completely black .Percent
): an integer from 0
to 100
(a percentage) that determines the level of transparency of the edges in the 3D view. A value of 100
indicates completely invisible edges; the edges are invisible but they can still be picked as long as AnsichtSelectable is true
.FloatConstraint
): a float that determines the width in pixels of the edges in the 3D view. It defaults to 1.0
.Bool
): it defaults to false
.FloatConstraint
): similar to AnsichtLine Width, defines the size of the vertices.Color
): similar to AnsichtLine Color, defines the color of the faces. It defaults to (0.8, 0.8, 0.8)
, which is displayed as [204,204,204]
on base 255, a light gray.Material
): an App Material associated with this object. By default it is empty.Percent
): an integer from 0
to 100
(a percentage) that determines the level of transparency of the faces in the 3D view. A value of 100
indicates completely invisible faces; the faces are invisible but they can still be picked as long as AnsichtSelectable is true
.Selection
Enumeration
): Disabled
(default), Enabled
, Object
, Element
.Bool
): if it is true
, the object can be picked with the pointer in the 3D view. Otherwise, the object cannot be selected until this option is set to true
.Enumeration
): Shape
(default), BoundBox
. If the option is Shape
, the entire shape (vertices, edges, and faces) will be highlighted in the 3D view; if it is BoundBox
only the bounding box will be highlighted.See also: FreeCAD Scripting Basics and scripted objects.
See Part Feature for the general information on adding objects to the document.
A Mesh Feature is created with the addObject()
method of the document.
import FreeCAD as App
doc = App.newDocument()
obj = App.ActiveDocument.addObject("Mesh::Feature", "Name")
obj.Label = "Custom label"
For Python subclassing you should create the Mesh::FeaturePython
object.
import FreeCAD as App
doc = App.newDocument()
obj = App.ActiveDocument.addObject("Mesh::FeaturePython", "Name")
obj.Label = "Custom label"